home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh -f
- if ( `versions sgips | grep "sgips.sw" | wc -l` > 0 ) then
- echo "Found installation... "
- echo " "
- echo " "
- echo "Do you want to remove Adobe Photoshop Performance Package (y/n)? \c"
- set ans=($<)
- if ( $ans == 'y') then
- versions remove sgips
- echo ""
- echo "Done"
- echo " "
- endif
- else
- echo "no install"
- echo "Done"
- echo " "
- echo ""
- echo ""
- echo "It appears that the Photoshop Performance Package is not currently installed."
- echo "Exiting..."
- echo ""
- echo ""
- endif
- echo "Press Enter to exit this window... \c"
- set a = $<
-
-